home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / windows / graphs / multicon.arj / MODVIEW.CPP < prev    next >
C/C++ Source or Header  |  1994-03-09  |  2KB  |  86 lines

  1. //*************************************************************
  2. //  File name: MODVIEW.CPP
  3. //
  4. //  Description:
  5. //     Implementation for CModView
  6. //
  7. //  History:    Date       Author     Comment
  8. //              3/8/94     FJB        Created
  9. //
  10. // Written by Microsoft Product Support Services, Windows Developer Support
  11. // Copyright (c) 1994 Microsoft Corporation. All rights reserved.
  12. //*************************************************************
  13.  
  14. #include "stdafx.h"
  15. #include "multicon.h"
  16. #include "modview.h"
  17.  
  18.  
  19. //*************************************************************
  20. //  Class:
  21. //      CModView 
  22. //
  23. //  Description:
  24. //      AppWizard generated view class that exposes a public OnDraw override.
  25. //
  26. //  Derived from:
  27. //      CView
  28. //
  29. //  Data Members:
  30. //      None
  31. //
  32. //  Member Functions:
  33. //      CModView      : Constructor
  34. //     ~CModView      : Destructor
  35. //      OnDraw        : Does nothing 
  36. //
  37. //  Comments:
  38. //      This class is provided as an intermediate so the actual view class
  39. //      can be treated polymorphically by CIconWnd.  Doesn't do anything
  40. //      except expose OnDraw as public.
  41. //
  42. //
  43. //  History:    Date       Author     Comment
  44. //              3/8/94     FJB        Created
  45. //
  46. //*************************************************************  
  47.  
  48. #ifdef _DEBUG
  49. #undef THIS_FILE
  50. static char BASED_CODE THIS_FILE[] = __FILE__;
  51. #endif
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CModView
  55.  
  56. IMPLEMENT_DYNCREATE(CModView, CView)
  57.  
  58. CModView::CModView()
  59. {
  60. }
  61.  
  62. CModView::~CModView()
  63. {
  64. }
  65.  
  66.  
  67. BEGIN_MESSAGE_MAP(CModView, CView)
  68.    //{{AFX_MSG_MAP(CModView)
  69.       // NOTE - the ClassWizard will add and remove mapping macros here.
  70.    //}}AFX_MSG_MAP
  71. END_MESSAGE_MAP()
  72.  
  73.  
  74. /////////////////////////////////////////////////////////////////////////////
  75. // CModView drawing
  76.  
  77. void CModView::OnDraw(CDC* pDC)
  78. {
  79.    CDocument* pDoc = GetDocument();
  80.    // TODO: add draw code here
  81. }
  82.  
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CModView message handlers
  85.  
  86.